dbb121d368ffc04b93951302ce8140757c18068b,addon/src/main/java/fi/jasoft/dragdroplayouts/client/ui/horizontallayout/VDDHorizontalLayout.java,VDDHorizontalLayout,emphasis,#Widget#VDragEvent#,220

Before Change



    // Add drop location specific style
    if (container.getElement().equals(this.getElement())) {
      UIObject.setStyleName(container.getElement(), OVER + "-"
          + HorizontalDropLocation.CENTER.toString().toLowerCase(), true);
    } else {
      UIObject.setStyleName(container.getElement(),
          OVER + "-" + getHorizontalDropLocation(container, event).toString().toLowerCase(), true);

After Change


    }
    
    UIObject.setStyleName(currentlyEmphasised.getElement(), OVER, true);
    UIObject.setStyleName(currentlyEmphasised.getElement(), OVER + "-"
            + location.toString().toLowerCase(), true);
  }

  /**